home *** CD-ROM | disk | FTP | other *** search
- function NOF_EcommMappingUtil(){
- this.__proto__ = NOF_EcommMappingUtil.prototype;
-
- var resourcePath = "ecomm/properties/mapping";
- var resource = null;
-
- this.getResource = function getResource(){
- if (resource == null){
- resource = NOF.UTIL.ResourceBundle.getBundle(resourcePath, NOF.UTIL.DefaultLocale);
- }
-
- return resource;
- }
-
- this.GetDBFieldName = function GetDBFieldName( name ){
- var ret = this.getResource().getProperty("displayeditems.dbfield." + name);
-
- return ret;
- }
- }
-
- NOF.__proto__.EcommMappingUtil = new NOF_EcommMappingUtil();
-
-